@charset "UTF-8";
:root {
  --white: #fff;
  /* 主要颜色 */
  --main_color_green: #0a9e4c;
  --main_color_yellow: #fd9510;
  --second_color_yellow: #f3cf55;
  /* 机构职能等颜色 */
  --big_btn_bg: #41a06b;
  --big_btn_bg-decoration: #f3cf55;
  /* 主要列表颜色 */
  --main_list_text_color: #394351;
  --main_list_time_color: #bec2c7;
  --second_text_gray: #666666;
  /* 其他颜色 */
  --other_text_color: #434343;
  /* 轮播颜色 */
  --swiper_text_color: #10af57;
  --swiper_navitation_color: rgba(234, 181, 43, 0.65);
  --xxgk_icon_color: #999999;
  --xxgk_icon_color_hover: #0a9e4c;
}
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body,
dl,
dd,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
header,
section,
article,
footer {
  margin: 0;
}
em,
b {
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: 0;
  display: block;
}
button,
input,
select,
textarea {
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th,
ul,
ol {
  padding: 0;
}
select:-ms-expand {
  display: none;
}
body {
  width: 100%;
  height: 100%;
  font-family: Microsoft YaHei, Helvetica Neue, PingFang SC, Hiragino Sans GB, Heiti SC, WenQuanYi Micro Hei, sans-serif;
  background: url(body_bg_Xu230510.png) no-repeat top center;
}
.w1400 {
  width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
.wrap .header {
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
}
.wrap .search {
  width: 561px;
}
.wrap .search .search_btn {
  width: 100%;
  height: 45px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  border-radius: 5px;
  border: 2px solid #ccc;
  box-sizing: border-box;
}
.wrap .search form #serach {
  width: 300px;
  padding-left: 30px;
  box-sizing: border-box;
  border: none;
}
.wrap .search .search_site {
  background-color: var(--main_color_green);
}
.wrap .search .search_site:hover {
  background-color: #09833f;
}
.wrap .search .search_btn {
  display: flex;
  align-items: center;
}
.wrap .search .search_btn .btn {
  transition: all 0.2s;
  color: var(--white);
  border: 0;
  width: 118px;
  line-height: 33px;
  height: 33px;
  border-radius: 3px;
  cursor: pointer;
}
.wrap .search .search_all {
  background-color: var(--main_color_yellow);
}
.wrap .search .search_all:hover {
  background-color: #de830e;
}
.wrap .search .login ul {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}
.wrap .search .login ul li {
  color: var(--other_text_color);
  /* margin-right: 15px; */
}
.wrap .search .login ul li::after {
  content: "\00A0\00A0|\00A0\00A0";
  color: #cfd1d0;
}
.wrap .search .login ul li:last-of-type::after,
.wrap .search .login ul li:nth-child(2)::after {
  display: none;
}
.wrap .search .login ul li a:hover {
  color: var(--main_color_green);
}
/* nav */
.wrap .nav {
  background: var(--main_color_green);
  border-radius: 5px;
  margin-bottom: 50px;
}
.wrap .nav ul {
  display: flex;
  justify-content: space-between;
  line-height: 93px;
}
.wrap .nav ul li {
  color: var(--white);
  font-size: 20px;
  transition: all 0.3s;
  position: relative;
}
.wrap .nav ul li a {
  padding: 0 60px;
  display: block;
}
.wrap .nav ul li:hover,
.wrap .nav ul li.active {
  font-size: 26px;
  font-weight: bold;
}
.wrap .nav ul li:hover::after,
.wrap .nav ul li.active::after {
  content: "";
  display: block;
  width: 46%;
  height: 5px;
  background-color: var(--main_color_yellow);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
}
.general_list {
  width: 100%;
}
.general_list .tab ul {
  display: flex;
  justify-content: start;
  margin-bottom: 10px;
}
.general_list .tab ul li {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  margin: 0 20px;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}
.general_list .tab ul li.on {
  color: var(--main_color_green);
  background: linear-gradient(to bottom, transparent 70%, rgba(10, 158, 76, 0.2));
}
.general_list .tab ul li.on::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--second_color_yellow);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
}
.general_list .tab ul li:first-child {
  margin-left: 0;
}
.general_list .list li a.new::after {
  content: "new";
  display: inline-block;
  background-color: var(--second_color_yellow);
  padding: 2px 6px;
  position: absolute;
  font-size: 12px;
  right: -26px;
  color: var(--white);
  border-radius: 5px;
}
.general_list .list li.have_main {
  background-color: #f5fbf8;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
}
.general_list .list li.have_main .time p {
  text-align: right;
  margin-right: 20px;
}
.general_list .list li.have_main .time p:nth-child(1) {
  color: var(--main_color_green);
  font-weight: bold;
  font-size: 18px;
}
.general_list .list li.have_main .time p:nth-child(2) {
  color: var(--other_text_color);
}
.general_list .list li.have_main .text {
  position: relative;
  width: 85%;
}
.general_list .list li.have_main .text .title {
  font-weight: bold;
  color: #000;
  font-size: 18px;
}
.general_list .list li.have_main .text .abstract {
  color: var(--second_text_gray);
  font-size: 16px;
}
.general_list .list li.normal_li {
  height: 66px;
  border-bottom: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.general_list .list li.normal_li a {
  color: var(--main_list_text_color);
  font-size: 16px;
  width: 86%;
  display: block;
}
.general_list .list li.normal_li a:hover {
  color: var(--main_color_green);
}
.general_list .list li.normal_li a.new::after {
  position: static;
  border-radius: 10px 10px 10px 0;
  margin-left: 10px;
}
.general_list .list li.normal_li span {
  color: var(--main_list_time_color);
}
.general_list .list li.normal_li::before {
  width: 16px;
  height: 16px;
  content: "";
  background: url(list_before_Xu230510.png) no-repeat left center;
  background-size: contain;
  display: inline-block;
  margin-top: 5px;
}
.general_list.in_number_list .list li {
  position: relative;
}
.general_list.in_number_list .list li::after {
  padding: 0 5px;
  background: #fff9ea;
  color: #dc9418;
  position: absolute;
  left: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 3px;
}
.general_list.in_number_list .list li:nth-child(even)::after {
  background-color: #fff9ea;
  color: #dc9418;
}
.general_list.in_number_list .list li:nth-child(odd)::after {
  background-color: #f4f8fc;
  color: #4a78fe;
}
.general_list.in_number_list .list li:nth-child(1)::after {
  content: "1";
}
.general_list.in_number_list .list li:nth-child(2)::after {
  content: "2";
}
.general_list.in_number_list .list li:nth-child(3)::after {
  content: "3";
}
.general_list.in_number_list .list li:nth-child(4)::after {
  content: "4";
}
.general_list.in_number_list .list li:nth-child(5)::after {
  content: "5";
}
.general_list.in_number_list .list li:nth-child(6)::after {
  content: "6";
}
.general_list.in_number_list .list li a {
  width: 84%;
  padding-left: 20px;
}
.content .section1 {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.content .section1 .left_slide {
  width: 678px;
  height: 464px;
  overflow: hidden;
  position: relative;
}
.content .section1 .left_slide .pic_slide {
  position: relative;
}
.content .section1 .left_slide .pic_slide .bd img {
  width: 100%;
  height: 354px;
}
.content .section1 .left_slide .pic_slide .hd {
  width: 100%;
}
.content .section1 .left_slide .pic_slide .hd ul {
  position: absolute;
  top: 65%;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 9999;
}
.content .section1 .left_slide .pic_slide .hd li {
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  display: block;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  text-align: center;
  margin: 0 5px;
  margin-top: 10px;
}
.content .section1 .left_slide .pic_slide .hd li.on {
  background-color: var(--swiper_navitation_color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
}
.content .section1 .left_slide .bd .text {
  color: var(--other_text_color);
  border: 2px solid #e1f8eb;
  background-color: var(--white);
  text-align: center;
  padding: 0px 0 15px;
  margin-top: 10px;
  box-shadow: 0 4px 10px 0 rgba(9, 88, 33, 0.3);
}
.content .section1 .left_slide .bd .text a {
  font-size: 18px;
  line-height: 50px;
}
.content .section1 .left_slide .bd .text .channel_name {
  color: var(--main_color_green);
  font-weight: bold;
}
.content .section1 .left_slide .bd .text .channel_name::after {
  content: "\00A0\00A0|\00A0\00A0";
  color: var(--main_list_time_color);
  opacity: 0.2;
}
.content .section1 .left_slide .bd .text .docreltime {
  color: var(--main_list_time_color);
}
.content .section1 .left_slide .prev {
  left: 15px;
}
.content .section1 .left_slide .next {
  right: 15px;
}
.content .section1 .left_slide .prev,
.content .section1 .left_slide .next {
  border: 2px solid rgba(16, 175, 87, 0.4);
  color: var(--main_color_green);
  width: 42px;
  height: 42px;
  display: block;
  font-size: 22px;
  text-align: center;
  line-height: 42px;
  transition: 0.2s all;
  border-radius: 3px;
  position: absolute;
  bottom: 23px;
}
.content .section1 .left_slide .prev:hover,
.content .section1 .left_slide .next:hover {
  color: var(--white);
  background-color: var(--main_color_green);
}
.content .section1 .right_list {
  width: 664px;
}
.content .section2 {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.content .section2 .xxgk_btn {
  width: 353px;
}
.content .section2 .xxgk_btn .xxgk_title {
  padding: 27px 23px;
  background: linear-gradient(to right, #2fbc92, var(--main_color_green));
  border-radius: 3px;
  margin-bottom: 17px;
}
.content .section2 .xxgk_btn .xxgk_title p:first-child {
  color: transparent;
  font-weight: bold;
  font-size: 24px;
  -webkit-text-stroke: 1px #fff;
}
.content .section2 .xxgk_btn .xxgk_title p:first-child::selection,
.content .section2 .xxgk_btn .xxgk_title p:first-child::-webkit-selection {
  background: #000;
  color: #fff;
}
.content .section2 .xxgk_btn .xxgk_title p:last-child {
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li {
  text-align: center;
  padding: 4.5px 10.5px 0;
  width: 142px;
  height: 96px;
  background-color: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px 0 rgba(9, 88, 33, 0.3);
  border-radius: 3px;
  position: relative;
  transition: all 0.2s;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li p:first-child {
  font-size: 30px;
  color: var(--xxgk_icon_color);
  margin-top: 16px;
  margin-bottom: 2px;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li p:last-child {
  color: var(--other_text_color);
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li::before {
  content: "";
  display: block;
  width: 85%;
  height: 2px;
  background-color: var(--main_color_green);
  margin: 0 auto;
  position: absolute;
  opacity: 0.3;
  top: 10px;
  left: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 2;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: var(--main_color_green);
  z-index: 3;
  position: absolute;
  top: 10px;
  left: 12px;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:nth-child(1) p:first-child,
.content .section2 .xxgk_btn .xxgk_main_btn ul li:nth-child(2) p:first-child,
.content .section2 .xxgk_btn .xxgk_main_btn ul li:nth-child(5) p:first-child,
.content .section2 .xxgk_btn .xxgk_main_btn ul li:nth-child(6) p:first-child {
  margin-bottom: 10px;
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:hover {
  background-color: var(--main_color_green);
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:hover p:first-child {
  color: var(--white);
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:hover p:last-child {
  color: var(--white);
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:hover::before {
  background-color: var(--white);
}
.content .section2 .xxgk_btn .xxgk_main_btn ul li:hover::after {
  background-color: var(--white);
}
.content .section2 .important_news {
  width: 638px;
}
.content .section2 .right_btn {
  width: 248px;
}
.content .section2 .right_btn ul li {
  border: 1px solid;
  border-image: linear-gradient(to right, #8ec6a7, transparent, #8ec6a7) 1;
  margin-bottom: 35px;
  border-radius: 3px;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.content .section2 .right_btn ul li a {
  height: 105px;
  background-image: linear-gradient(to right, transparent 10%, #f4fef8);
  display: block;
  padding: 0 20px;
  box-sizing: border-box;
}
.content .section2 .right_btn ul li a::before {
  content: "\e65f";
  border-radius: 50px;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 17px;
  top: 44px;
  background: var(--main_color_green);
  text-align: center;
  line-height: 22px;
  color: var(--white);
  font-weight: bold;
  font-size: 12px;
}
.content .section2 .right_btn ul li p:first-child {
  padding-top: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  position: relative;
}
.content .section2 .right_btn ul li p:last-child {
  font-size: 14px;
  color: var(--big_btn_bg);
  padding-left: 20px;
}
.content .section2 .right_btn ul li:hover {
  background: var(--big_btn_bg);
}
.content .section2 .right_btn ul li:hover a {
  background: var(--big_btn_bg);
  color: var(--white);
}
.content .section2 .right_btn ul li:hover a::before {
  background: var(--white);
  color: var(--big_btn_bg);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.content .section2 .right_btn ul li:hover a p:first-child::before {
  content: "";
  display: block;
  width: 30%;
  height: 3px;
  background-color: var(--main_color_yellow);
  position: absolute;
  left: 0;
  bottom: -5px;
  box-sizing: border-box;
  z-index: 2;
}
.content .section3 {
  width: 100%;
  position: relative;
  height: 157px;
}
.content .section3 .hd ul {
  width: 154px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 23px;
  bottom: 20px;
  z-index: 999;
}
.content .section3 .hd li {
  width: 46px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}
.content .section3 .hd li.on {
  background: #fff;
}
.content .section3 .bd img {
  width: 100%;
  height: 100%;
}
.content .section4,
.content .show_mail_num_data,
.content .hdjl_btn {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.content .section4 .hdjl,
.content .show_mail_num_data .hdjl,
.content .hdjl_btn .hdjl {
  width: 422px;
}
.content .section4 .wyly,
.content .show_mail_num_data .wyly,
.content .hdjl_btn .wyly {
  background: url(hdjl_bg_Xu230510.png) no-repeat left center;
  height: 109px;
  padding: 24px 31px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.content .section4 .wyly p:first-child,
.content .show_mail_num_data .wyly p:first-child,
.content .hdjl_btn .wyly p:first-child {
  font-weight: bold;
  line-height: 40px;
  font-size: 24px;
}
.content .section4 .wyly a:first-of-type,
.content .show_mail_num_data .wyly a:first-of-type,
.content .hdjl_btn .wyly a:first-of-type {
  padding: 5px 22px;
  border-radius: 10px;
  margin-top: 5px;
  display: inline-block;
  color: var(--white);
  background: linear-gradient(to right, #55c2f8, #75efdb);
}
.content .section4 .btn_list ul,
.content .show_mail_num_data .btn_list ul,
.content .hdjl_btn .btn_list ul {
  display: flex;
  justify-content: space-between;
}
.content .section4 .btn_list li,
.content .show_mail_num_data .btn_list li,
.content .hdjl_btn .btn_list li {
  box-shadow: 0 4px 10px 0 rgba(9, 88, 33, 0.1);
  height: 127px;
  width: 135px;
  border-radius: 3px;
  border: 1px solid #e1f8eb;
  padding: 25px 0;
  box-sizing: border-box;
  text-align: center;
}
.content .section4 .btn_list li p:last-child,
.content .show_mail_num_data .btn_list li p:last-child,
.content .hdjl_btn .btn_list li p:last-child {
  margin-top: 10px;
  transition: all 0.2s;
}
.content .section4 .btn_list li p:last-child:hover,
.content .show_mail_num_data .btn_list li p:last-child:hover,
.content .hdjl_btn .btn_list li p:last-child:hover {
  color: var(--main_color_green);
}
.content .section4 .btn_list .iconfont,
.content .show_mail_num_data .btn_list .iconfont,
.content .hdjl_btn .btn_list .iconfont {
  width: 56px;
  height: 53px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .section4 .btn_list .iconfont::before,
.content .show_mail_num_data .btn_list .iconfont::before,
.content .hdjl_btn .btn_list .iconfont::before {
  font-size: 20px;
  margin-left: 6px;
}
.content .section4 .btn_list .icon-tiaochawenjuan,
.content .show_mail_num_data .btn_list .icon-tiaochawenjuan,
.content .hdjl_btn .btn_list .icon-tiaochawenjuan {
  background: url(hdjl_bg_shape_Xu230510.png) no-repeat center center;
  background-size: contain;
}
.content .section4 .btn_list .icon-tiaochawenjuan::before,
.content .show_mail_num_data .btn_list .icon-tiaochawenjuan::before,
.content .hdjl_btn .btn_list .icon-tiaochawenjuan::before {
  margin-left: 8px;
  margin-top: 12px;
  color: #73d13d;
}
.content .section4 .btn_list .icon-shizhong,
.content .show_mail_num_data .btn_list .icon-shizhong,
.content .hdjl_btn .btn_list .icon-shizhong {
  background: url(hdjl_bg_square_Xu230510.png) no-repeat center center;
  background-size: contain;
}
.content .section4 .btn_list .icon-shizhong::before,
.content .show_mail_num_data .btn_list .icon-shizhong::before,
.content .hdjl_btn .btn_list .icon-shizhong::before {
  margin-top: 2px;
  color: #fcb86f;
}
.content .section4 .btn_list .icon-lingdang1,
.content .show_mail_num_data .btn_list .icon-lingdang1,
.content .hdjl_btn .btn_list .icon-lingdang1 {
  background: url(hdjl_bg_triangle_Xu230510.png) no-repeat center center;
  background-size: contain;
}
.content .section4 .btn_list .icon-lingdang1::before,
.content .show_mail_num_data .btn_list .icon-lingdang1::before,
.content .hdjl_btn .btn_list .icon-lingdang1::before {
  margin-top: 14px;
  color: #87e4de;
}
.content .section4 .rsxx,
.content .show_mail_num_data .rsxx,
.content .hdjl_btn .rsxx {
  width: 897px;
}
.content .section4 .rsxx .in_number_list .list li a,
.content .show_mail_num_data .rsxx .in_number_list .list li a,
.content .hdjl_btn .rsxx .in_number_list .list li a {
  width: 86%;
  padding-left: 0;
}
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--main_color_green);
  position: relative;
  background-color: #fff;
}
.footer .link {
  width: 1000px;
  line-height: 73px;
  overflow: inherit;
}
.footer .link .outside_ul {
  display: flex;
  justify-content: space-between;
}
.footer .link .outside_ul .iconfont::after {
  padding: 0 10px;
  display: inline-block;
  transition: 0.2s all;
}
.footer .link .outside_ul .iconfont.active::after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: transform 0.2s linear;
  transform-origin: center center;
}
.footer .link .outside_ul .inside_ul {
  position: absolute;
  top: -75px;
  width: 1400px;
  padding: 0 50px;
  box-sizing: border-box;
  border: 1px solid var(--main_color_green);
  border-bottom: 1px solid #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  display: none;
}
.footer .link .outside_ul .inside_ul.active {
  display: block;
}
.footer .link .outside_ul .inside_ul li {
  line-height: 50px;
  margin: 0 20px;
  float: left;
}
.footer .link .outside_ul .inside_ul a:hover {
  color: var(--main_color_green);
}
.footer .siteInfo {
  height: 161px;
  background: var(--main_color_green);
}
.footer .siteInfo .w1400 {
  height: inherit;
  display: flex;
  justify-content: space-between;
}
.footer .siteInfo .left {
  height: inherit;
  width: 770px;
  display: flex;
  justify-content: space-around;
}
.footer .siteInfo .left .pic {
  width: 165px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
.footer .siteInfo .left .info {
  margin-top: 39px;
  line-height: 30px;
  color: var(--white);
}
.footer .siteInfo .right {
  width: 118px;
  margin-top: 39px;
}
.footer .siteInfo .right a {
  padding: 11px 27px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 7px;
}
.footer .siteInfo .right a:hover {
  color: var(--second_color_yellow);
}
